home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / util / cli / LibMon.lha / Src / break.h next >
Encoding:
C/C++ Source or Header  |  1997-10-28  |  504 b   |  19 lines

  1. #ifndef LIBMON_BREAK_H
  2. #define LIBMON_BREAK_H
  3.  
  4. #ifndef EXEC_TYPES_H
  5. #include <exec/types.h>        /* For NULL ...            */
  6. #endif /* EXEC_TYPES_H */
  7. #ifndef CLIB_EXEC_PROTOS_H
  8. #include <clib/exec_protos.h>  /* For SetSignal()...      */
  9. #endif /* CLIB_EXEC_PROTOS_H */
  10. #ifndef DOS_DOS_H
  11. #include <dos/dos.h>           /* For SIGBREAKF_CTRL_C... */
  12. #endif /* DOS_DOS_H */
  13.  
  14.  
  15. #define CTRL_C        (SetSignal(NULL,NULL) & SIGBREAKF_CTRL_C)
  16. #define BREAK_TXT    "***Break - LibMon"
  17.  
  18. #endif /* LIBMON_BREAK_H */
  19.